home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 2 / CU Amiga Magazine's Super CD-ROM 02 (1996)(EMAP Images)(GB)[!][issue 1996-04].iso / magazine / amiga_e / installeds < prev    next >
Text File  |  1994-02-20  |  2KB  |  96 lines

  1. ;This is the installation script for EDS V40.x
  2.  
  3.  
  4. (transcript "Installing EDS V40.64 ...")
  5.  
  6. (set @default-dest
  7.     (askdir
  8.         (prompt "Where would you like to install EDS?")
  9.         (help @askdir-help)
  10.         (default @default-dest)
  11.         (newpath)
  12.         (disk)
  13.     )
  14. )
  15.  
  16. (copyfiles
  17.     (prompt "Copying files to destination")
  18.     (help @copyfiles-help)
  19.     (source "")
  20.     (dest @default-dest)
  21.     (choices "EDS" "Eds_docs.guide" "Registration.form")
  22.     (infos)
  23.     (confirm)
  24. )
  25.  
  26. (makedir "ENVARC:EDS"
  27.     (prompt "I will now create the directory \"Envarc:eds\"")
  28.     (help @makedir-help)
  29.     (infos)
  30.     (confirm)
  31. )
  32.  
  33. (copyfiles
  34.     (prompt "Copying preferences files to Envarc:eds.")
  35.     (help @copyfiles-help)
  36.     (source "envarc/eds/")
  37.     (dest "Envarc:Eds/")
  38.     (pattern "#?.prefs")
  39.     (files)
  40.     (confirm)
  41. )
  42.  
  43. (set author-string
  44.     (askstring 
  45.         (prompt "What is your name?\n" "Will be used for Revision Control System.")
  46.         (default (getenv "author"))
  47.         (help @askstring-help)
  48.     )
  49. )
  50.  
  51. (set company-string
  52.     (askstring 
  53.         (prompt "What is the name of your programming company?\n" "Will be used for Revision Control System.")
  54.         (default (getenv "company"))
  55.         (help @askstring-help)
  56.     )
  57. )
  58.  
  59. (textfile
  60.     (prompt "Creating a environmental varibles...\n Writing AUTHOR env-var")
  61.     (help "EDS uses two env-variables in its revision control system.  These are AUTHOR and COMPANY. ")
  62.     (dest "Envarc:Author")
  63.     (append author-string)
  64.     (confirm)
  65. )
  66.  
  67. (textfile
  68.     (prompt "Creating a environmental varibles...\n Writing COMPANY env-var")
  69.     (help "EDS uses two env-variables in its revision control system.  These are AUTHOR and COMPANY. ")
  70.     (dest "Envarc:company")
  71.     (append company-string)
  72.     (confirm)
  73. )
  74.  
  75. (copylib
  76.     (prompt "Copying ReqTools.library to LIBS:")
  77.     (help @copylib-help)
  78.     (source "libs/reqtools.library")
  79.     (dest "libs:")
  80.     (confirm)
  81. )
  82.  
  83. (copyfiles
  84.     (prompt "Copying Fonts to FONTS:")
  85.     (help @copyfiles-help)
  86.     (source "fonts/")
  87.     (dest "fonts:")
  88.     (confirm)
  89.     (all)    
  90. )
  91.  
  92. (message "Installation of EDS is complete. \n"
  93.     "You may want to install EPP and the patch to EPP (which means you must install the ptool.library and Patch'em - see readme file).\n"
  94.     "Please reboot the system now to make installation take effect.\n " 
  95.     "Make sure you set up the icon tooltypes of EDS before running."
  96. )